home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / ptimer13.zip / JR2400.BAT < prev    next >
DOS Batch File  |  1991-02-19  |  633b  |  23 lines

  1. :My system defaults to echo off, so I do not use an echo statement. Alter
  2. :this first line to meet your own needs.  Telix passes the filename to be
  3. :transferred as %3 - therefore this bat file will handle batch down loads
  4. :with JModem by making use of the Dos "Shift" command and "goto" statements
  5. :After you make your alterations to this file you can remove this note.
  6.  
  7. CLS
  8. :BEGIN
  9. IF "%3"=="" GOTO :EXIT
  10. GOTO START
  11. :START
  12. d:ptimer.com /mode=start
  13. JMODEM.COM R2 %3 %4 %5 %6 %7 %8 %9
  14. if errorlevel 1 goto :skip
  15. d:ptimer.com /mode=rec/port=2/rate=2400/protocol=jmodem/file=%3
  16. :skip
  17. SHIFT
  18. GOTO :BEGIN
  19. :EXIT
  20. 
  21. 
  22. 
  23.